/* Wishlist Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 86, 179, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.contact-icon-large {
    margin-bottom: 1.5rem;
}

.icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    position: relative;
}

.icon-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    z-index: -1;
    opacity: 0.3;
}

.icon-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon-inner i {
    font-size: 24px;
    color: #007bff;
}

.contact-details {
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Wishlist Container */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    z-index: 10;
    border-radius: 24px 24px 0 0;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 53, 69, 0.03) 0%, transparent 50%);
    z-index: -1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    color: #000000 !important;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #000000 !important;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: 600;
}

/* Search & Sort Section */
.search-sort-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: #007bff;
    font-size: 1.3rem;
}

.search-sort-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    align-items: end;
}

.search-box .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-box .input-group:focus-within {
    border-color: #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    transform: translateY(-2px);
}

.search-box .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.search-box .form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
}

.search-box .btn-search {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box .btn-search:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-1px);
}

.sort-box .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.sort-box .form-select:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

/* Empty Wishlist */
.empty-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 3rem 1rem;
}

.empty-wishlist-content {
    text-align: center;
    max-width: 500px;
}

.empty-wishlist-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.empty-wishlist-icon i {
    font-size: 48px;
    color: white;
}

.empty-wishlist h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.empty-wishlist p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.empty-wishlist .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.empty-wishlist .btn-primary:hover {
    background: linear-gradient(45deg, #c82333, #a71e2a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.empty-wishlist .btn-primary i {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .search-sort-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 0;
        height: auto;
        padding: 0;
        align-items: flex-start !important;
        overflow: visible !important;
        margin-top: -110px;
    }
    
    .contact-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-container {
        padding: 1.5rem 0.75rem;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .search-sort-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-box .form-control,
    .search-box .btn-search,
    .sort-box .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 0;
        height: auto;
        padding: 0;
        align-items: flex-start !important;
        overflow: visible !important;
        margin-top: -130px;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-container {
        padding: 1rem 0.5rem;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .search-box .form-control,
    .search-box .btn-search,
    .sort-box .form-select {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .empty-wishlist {
        padding: 2rem 0.5rem;
        min-height: 300px;
    }
    
    .empty-wishlist-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .empty-wishlist-icon i {
        font-size: 40px;
    }
    
    .empty-wishlist h3 {
        font-size: 1.75rem;
    }
    
    .empty-wishlist p {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .contact-hero {
        min-height: 0;
        height: auto;
        padding: 0;
        align-items: flex-start !important;
        overflow: visible !important;
        margin-top: -140px;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-container {
        padding: 0.75rem 0.4rem;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .empty-wishlist {
        padding: 1.5rem 0.25rem;
        min-height: 250px;
    }
    
    .empty-wishlist-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .empty-wishlist-icon i {
        font-size: 32px;
    }
    
    .empty-wishlist h3 {
        font-size: 1.5rem;
    }
    
    .empty-wishlist p {
        font-size: 0.9rem;
    }
}

/* Tablet devices - Move hero up */
@media (min-width: 768px) and (max-width: 1024px) {
    .contact-hero {
        margin-top: -60px !important;
    }
}

/* Larger tablets */
@media (min-width: 1024px) and (max-width: 1366px) {
    .contact-hero {
        margin-top: -100px !important;
    }
}

/* Tablet landscape orientation */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {
    .contact-hero {
        margin-top: -60px !important;
    }
}

/* Mobile Header Search Overrides */
@media (max-width: 768px) {
    .mobile-header .mobile-search .input-group {
        align-items: stretch;
    }
    .mobile-header .mobile-search .form-control.mobile-search-input {
        height: 44px;
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
    }
    .mobile-header .mobile-search .search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 44px;
        padding: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .mobile-header .mobile-search .search-btn i {
        font-size: 1.2rem;
        color: #ffffff;
    }
}

@media (max-width: 480px) {
    .mobile-header .mobile-search .form-control.mobile-search-input {
        height: 38px;
        padding: 0.45rem 0.7rem !important;
        font-size: 0.9rem;
    }
    .mobile-header .mobile-search .search-btn {
        width: 42px;
        height: 38px;
    }
    .mobile-header .mobile-search .search-btn i {
        font-size: 1rem;
    }
}


